HTML title attribute
✒️ 2025-07-09 14:48 내용 수정
title attribute
- 참고 자료 : mdn web docs HTML title global attribute
- element에 대한 부가적인 설명을 추가할 때 사용한다.
<a title="글쓰기" href="/post/new">글쓰기</a>
- 부모 요소에
title이 존재하고, 자식 요소에title이 없는 경우엔title을 상속 받는다.
<div title="content box">
<span>example</span>
</div>